Skip to main content

Get Shipment Fee Rate Card

GET /orders/shipping/rate-cards/{uuid}

Description

This endpoint is used to retrieve the shipment fee rate card for a specific shipment using its unique identifier (UUID). The rate card provides details about the fees associated with the shipment.

Parameters

  • tenantId (string, header, required): The ID of the tenant.
  • countryCode (string, header, required): The country code.
  • uuid (string, path, required): The unique identifier for the shipment rate card.

Responses

200 Found Shipment Fee Rate Card

  • Media type: Controls Accept header.
  • Example Value:
{
"status": true,
"statusCode": 0,
"message": "string",
"data": {},
"errors": [
{
"message": "string",
"descriptiveMessage": "string"
}
]
}

400 Invalid reference supplied

404 Resource not found

LANGUAGE

AUTHORIZATION

Bearer

CURL REQUEST


curl --request GET \ 
--url /orders/shipping/rate-cards/{uuid} \
--header 'accept: application/json' \
--header 'content-type: application/json'

RESPONSE


Click Try It! to start a request and see the response here!